home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / esc.jar / com / extensibility / dom / NodeAdapter.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-30  |  1.6 KB  |  81 lines

  1. package com.extensibility.dom;
  2.  
  3. import org.w3c.dom.DOMException;
  4. import org.w3c.dom.Document;
  5. import org.w3c.dom.NamedNodeMap;
  6. import org.w3c.dom.Node;
  7. import org.w3c.dom.NodeList;
  8.  
  9. public class NodeAdapter {
  10.    public Node appendChild(Node var1) throws DOMException {
  11.       return null;
  12.    }
  13.  
  14.    public Node cloneNode(boolean var1) {
  15.       return null;
  16.    }
  17.  
  18.    public NamedNodeMap getAttributes() {
  19.       return null;
  20.    }
  21.  
  22.    public NodeList getChildNodes() {
  23.       return null;
  24.    }
  25.  
  26.    public Node getFirstChild() {
  27.       return null;
  28.    }
  29.  
  30.    public Node getLastChild() {
  31.       return null;
  32.    }
  33.  
  34.    public Node getNextSibling() {
  35.       return null;
  36.    }
  37.  
  38.    public String getNodeName() {
  39.       return null;
  40.    }
  41.  
  42.    public short getNodeType() {
  43.       return 1;
  44.    }
  45.  
  46.    public String getNodeValue() throws DOMException {
  47.       return null;
  48.    }
  49.  
  50.    public Document getOwnerDocument() {
  51.       return null;
  52.    }
  53.  
  54.    public Node getParentNode() {
  55.       return null;
  56.    }
  57.  
  58.    public Node getPreviousSibling() {
  59.       return null;
  60.    }
  61.  
  62.    public boolean hasChildNodes() {
  63.       return false;
  64.    }
  65.  
  66.    public Node insertBefore(Node var1, Node var2) throws DOMException {
  67.       return null;
  68.    }
  69.  
  70.    public Node removeChild(Node var1) throws DOMException {
  71.       return null;
  72.    }
  73.  
  74.    public Node replaceChild(Node var1, Node var2) throws DOMException {
  75.       return null;
  76.    }
  77.  
  78.    public void setNodeValue(String var1) throws DOMException {
  79.    }
  80. }
  81.